home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / csubrtns.arc / ERR.C next >
Encoding:
Text File  |  1985-07-06  |  256 b   |  11 lines

  1. /* err.c by Michael Hanson */
  2. /* you may use this, but not for profit, and give me credit */ 
  3. /* error printer for c */
  4.  
  5. error(str,erc)
  6. char *str;
  7. int erc;
  8. {
  9.     fprintf(STDERR,"%s \n",str);
  10.     exit(erc);
  11. }